More Pages: Lea Page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23


Hurry and update/reprint soon!
Valuable--I hope it is reprinted soon
A Lifesaver!!

My favorite Rose book
Big Red Apple doesn't fall far from the treeFun for kids, equally interesting to this adult.
Charming Story

Beautiful Tapestry of Latino Life in the United StatesEdited by one of the greatest activists and advocates for Latinos all around the world, actor Edward James Olmos, "Americanos: Latino Life in the United States" is a collection of beautiful photographs and stories of Latinos throughout the United States. From Mexican-Americans in California to Puerto Ricans in New York City, Olmos and a team of other editors have produced a book that perfectly and respectfully captures the beauty and realities of Latinos all around. Available in hardbound and paperback editions, "Americanos: Latino Life in the United States" is a must have for Latino/Hispanic Studies students/enthuasists or for anyone who tuly appreciates cultural photography. The book, which was accompanied by a U.S. museum tour of photographs featured in the book, is truly a milestone for a community that has risen from a long sleep and awakened to become the most dynamic and promising group in the Americas.
If I can use two words to describe this book, I would use "moving" and "beautiful." It's a must have book in your library, especially if you're Latino.
Manuel MonterreyThis is a very well done book with very good graphical editation done by Manuel Monterrey. I recomend it.
Very Important Book

An excellent, effective study on prayer
Could You Not Tarry One Hour
Is your spiritual life BORING?

Discovery of Freedom also charts course of Saracen MuslimsSo give it a try.
Just read it.And, by the way...I'm a professional author, and I'm 'frugal'.
Enough said.
A must read book.If you agree with the views in the book, give it away to your elected officals. It is obvious they don't know or agree with it.
You can let them know about the book. Whether they agree with it is up to them.


Intro to EverythingI'd recommend the book to anyone who'd like a convenient all-in-one-place reference to XML-related technologies and how PHP interacts with them. The book enables a developer to not just pick a tool because it's available, but to make intelligent decisions about which tool is best for their purposes.
It also gives one enough of a head start that understanding much deeper and more technical information on the web or in other books (XSLT Programmers Reference 2nd Edition, Pro PHP4, etc...) becomes easier to digest.
Some Thoughts About The Books GoalsAfter receiving my copy, I've been reading the entire book and as a whole, Professional PHP4 XML covers every inch of these topics in fantastic detail. I sincerely believe that new-comers to XML (and even PHP) will definitely find a wealth of information to get them started and expert programmers will enjoy the rich, deep knowledge contained in each subject, demonstrating the experience and thoroughness of all the authors who contributed to make this book the very best.
To start off my review, I want to take a look at the chapters in which I contributed, making clear to you the goals of each topic. Unlike many PHP books on the market, I didn't 'just' want to demonstrate the concepts and APIs; I really wanted to engage the reader into thinking creatively about their PHP applications by thinking about architecture and design and sharing valuable insights in areas concerned weather it be programming issues, common solutions to recurring problems, best practices, or changes to the APIs in future releases. Given that I am as much of a businessman as an architect, I also wanted to reader to consider the various business-related issues with each technology by providing valuable insight on the consequences to using these technologies in your organization. I wanted to enlighten the reader rather than bore them with functional descriptions and basic examples. As you read the book, you'll clearly see the book lives up to these goals.
My first task was to write a chapter on SAX. I've read many chapters on SAX from other texts or articles on the Internet, but I really wanted to take this one over and beyond what was already out there. Besides looking at the core concepts, process and various implementations, I explain in detail on how to create highly reusable, maintainable parsers by making use of object-oriented technology. I further explained how to deal with common problems when parsing erroneous generated XML content. Given that there are many hacked up Web Service-like URLs and XML generators out there, this section was much needed.
The DOM chapter continues teaching the reader about XML parsering by diving into the details on creating and manipulating DOM trees using PHP 4.2.1 and 4.3.0. This is something no book on the market has at the time of this review. The chapter shows countless number of examples to ensure the reader understands how to construct trees. The chapter dives into the architecture of DOM parsers and suggests much easier ways to simplify the construction of your applications. Given the DOM API is still new, the chapter outlines many of its current limitations and problems in great detail, ensuring the reader doesn't get fowled up in any dirty business that they can't fix without starring at their monitor for several hours only to see it's a problem with the API itself. This chapter discusses several larger applications that are interactive using HTML forms to show the reader how to construct XML content in an organized manner.
The last chapter, XSLT, discussed most of the XSLT standard as well as its use within PHP. This is useful since you don't need to purchase another XSLT book in the future as this chapter, as well as the appendix, should provide you with all the knowledge you'll need for years to come. Given that XSLT isn't used as much as it should, I spent a great deal outlining the various advantages and disadvantages pragmatically. Besides looking at the concepts and the XSL document standards, the chapter goes beyond simple XSL documents and explains how to build dynamic PHP scripts, interops with legacy applications, discusses the construction of multi-tiered applications, uses XSLT as a functional language, and even explains some recursive techniques to solve complicated document generation problems. Many times programmers are confused on which technology to use; this chapter compares SAX, DOM and XSLT and helps the reader decide which technology is best for your project and organization's goals. Lastly, XSLT is often overlooked when it can offer a very elegant and platform independent solution! The chapter thoroughly explains the various applications XSLT is used and even gives the reader with some vision and direction as I described how various projects used XSLT skillfully.
I hope these review helps inform you about the book's content. I hope you enjoy the book as we all did writing it. Happy reader and thanks for listening.
Solid Coverage of Core XML TechnologiesThe SAX chapter is very interesting read because it goes beyond the installation of the SAX libraries and learning how to use the functions. Covering Expat, the chapter explains a great deal about how to use the less uncommon functions like xml_set_notation_decl_handler(), xml_set_external_entity_ref_handler() and the others effectively. Also of note, the diagrams and code examples were very clear and well done in this chapter. The chapter also looks at writing a properly modeled object-oriented SAX parser using eXtremePHP and covers common problems like removing whitespace, handling erroneous XML input and extending the white box infrastructure within eXtremePHP to create very powerful, yet elegant, XML Parsers.The DOM chapter covers the latest DOM extensions introduced in PHP 4.2.1 and even provides code examples and heads up information on what is to come in PHP 4.3.0. The chapter introduces what DOM is and even shows the reader a beautiful diagram illustrating how all the functions relate to an example. By simply looking at this, you can get a feel for how to use DOM almost immediately. The chapter continues to discuss how to enable DOM within your PHP installation on both Windows and UNIX and looks at the real-world advantages and disadvantages to using DOM over SAX. Next, the chapter explains the new DOM object model and looks at the underlying architecture before diving into any code examples. This information sets up the rest of the chapter, making it a lot easier for non-object oriented programs to visualize what methods belong to what objects and understanding the data relationships of the DOM tree. The chapter then presents a lot of code examples. First, it illustrates how many of the methods and functions of the DOM library work and then covers more complicated examples, illustrating how to parse, create and modify DOM documents with and without using HTML forms. The chapter closes with a pretty comprehensive look into the limitations of the DOM standard, explaining to the reader what the boundaries are, common problems with the API yet unfixed and provides future directions the library might take to correct many of the architectural, standards-based and object-oriented capabilities within the library.
Kudos to everyone that made this book happen.


Amazing prose from a Laura and Rose point of view
A Time for New Beginnings...
The Best!

Good Book, but not for RookiesI recognized that every review is always so clean (no spelling mistakes, no grammar errors). Sometimes I think the Team itself writes some of them to impress readers. ;-)
I can agree that this Book is not to bad, but if somebody says it's the best way to learn PHP then he's not completely right.
There is no way that you can see thro the whole php-code without having read a "PHP-only" book before.
I don't say that every little step has to be explained (the book would be 2000 and more pages big), but i couldn't find that this book is not made for beginners anywhere on the book-explanation page.
Nice book, but please when you are a beginner, try a more explaining book first. Then go and buy this one.
Thank you
Don't miss out
Best among the lotWhat i found most interesting was the LEARNING CURVE - too fast, too ruddy fast that your client will gape at the speed at which you put together his site.


Heartwarming story that keeps interest
A moving story -- and a wonderful view of 1806 Maine!
Great characters, wonderful plot!

This was my second favorite little house book
Little Town in the Ozarks is excellent!
A wonderfully entertaining pageturner!